17. Function Signatures 2

Andy and Elecia continue their discussion of function signatures. Code below the video.

Function Signatures 2

The signature for the normalize function is:

vector< vector<float> > normalize(vector< vector <float> > grid);

Function Signatures 3 V1